home *** CD-ROM | disk | FTP | other *** search
/ World of Football 1998 / World of Football 1998.iso / XTRAS / FILEIO~1.TXT < prev    next >
Text File  |  1997-05-14  |  10KB  |  310 lines

  1. FileIO Xtra
  2. Version 1.0.2 - 18apr97 CH
  3.  
  4. FileIO Xtra for Macromedia Director 6.0
  5. =======================================
  6.  
  7. FileIO provides a set of methods allowing users of Macromedia Director 6.0 to
  8. programmatically access files using the Lingo scripting language. 
  9.  
  10. Using FileIO
  11. ============
  12.  
  13. If automatic opening is desired, place a copy of the FileIO Xtra for your platform
  14. into Application Xtra's folder. If automatic opening is not desired, the Xtra can be 
  15. placed anywhere and opened using Lingo's 'openXLib' command. This applies to 
  16. projector's as well, the Xtra must be placed in an Xtra's folder in the same folder 
  17. as the projector.
  18.  
  19. Each instance of FileIO can reference a single open file. If multiple files are to
  20. be opened simultaneously, a new instance of FileIO is required for each opened file.
  21. A single instance can be used to open multiple files, as long as the file is closed
  22. before a new file is opened. To create a new instance, use the new() method, defined
  23. below. To dispose of an instance, set the instance variable to 0. All methods that
  24. read from or write to the file must be called after the file has been opened using
  25. the openFile() method. If a new file is to be opened using the same instance, the
  26. file must be closed using closeFile(). Files can be opened in three different modes:
  27. Read, Write and Read/Write. When writing to a file, the contents of the file after
  28. the current position are overwritten.
  29.  
  30. Example Lingo
  31.  
  32.  set myFile = new(xtra "fileio")      -- Create an instance of FileIO
  33.  set fileName = displayOpen(myFile)   -- Display Open Dialog and return the fileName
  34.  openFile(myFile, fileName, 1)        -- Open the file
  35.  set theFile = readFile(myFile)       -- Read the file and return a string to Lingo
  36.  closeFile(myFile)                    -- Close the file
  37.  set myFile = 0                       -- Dispose of the instance
  38.  
  39. In this example, we created a new instance and stored it in the variable myFile.
  40. Next, the displayOpen() method is used to display an open dialog to allow a file to
  41. be chosen. The file is returned as a fully-qualified path string to Lingo. The file
  42. is then opened in read only mode, the contents of the file are read, and the file is
  43. closed. Lastly, the instance is disposed of.
  44.  
  45. Known Problems
  46. ==============
  47.  
  48. The createFile() method does not support relative filenames, or the Lingo '@' 
  49. operator in pathnames. This will be fixed in a later version.
  50.  
  51. The displaySave() method does not directly inform Lingo whether a user is 
  52. replacing an existing file. The workaround is to attempt to create the file using
  53. createFile() and check the error code for a "File Already Exists" error.
  54.  
  55. History
  56. =======
  57.  
  58. 18apr97 (v1.0.2)
  59.  
  60. Fixed parenting problem with displaySave() and displayOpen() methods.
  61. Added support for Authorware.
  62.  
  63. 27may96 (v1.0.1)
  64.  
  65. Added support for double-byte character sets.
  66. Added version() method to report FileIO Xtra version information. 
  67. Added getOSDir() to return a full path to the Windows Directory/System Folder.
  68.  
  69. 15mar96 (v1.0.0 Beta)
  70.  
  71. First public release.
  72.  
  73. Method Reference
  74. ================
  75.  
  76. The first line of each definition contains the method name, a list of parameters and
  77. thier value types. The internal name of the FileIO Xtra is "fileio". This name is
  78. used whenever referencing the xtra using the form 'xtra "fileio"'.
  79.  
  80. Note that while Director and projector's can use net-based files by supplying a URL
  81. for a filename, the FileIO Xtra cannot. It is limited to accessesing files available
  82. via filesystems mounted on the local system.
  83.  
  84. New methods will appear at the bottom of this list.
  85.  
  86. ---
  87.  
  88. mMessageList( xtra reference )
  89.  
  90. Returns a list of methods and parameters, as well as a brief explanation of each.
  91.  
  92. ---
  93.  
  94. new( xtra reference )
  95.  
  96. This is called to create a new instance of FileIO. The Xtra can be referenced by name
  97. or number. It returns an instance variable used to reference the instance.
  98.  
  99. ---
  100.  
  101. fileName( instance )
  102.  
  103. Returns the fileName string of the current open file.  The file must be open use this
  104. method.
  105.  
  106. ---
  107.  
  108. status( instance )
  109.  
  110. Returns the error code returned by the last method called. The value is returned as
  111. an integer. 
  112.  
  113. ---
  114.  
  115. error( instance, int error )
  116.  
  117. Returns a readable error string. A numeric error code is passed in as the
  118. second argument. The errors returned can be any of the following:
  119.  
  120. "OK"
  121. "Memory allocation failure"
  122. "File directory full"
  123. "Volume full"
  124. "Volume not found"
  125. "I/O Error"
  126. "Bad file name"
  127. "File not open"
  128. "Too many files open"
  129. "File not found"
  130. "No such drive"
  131. "No disk in drive"
  132. "Directory not found"
  133. "Instance has an open file"
  134. "File already exists"
  135. "File is opened read-only"
  136. "File is opened write-only"
  137. "Unknown error"
  138.  
  139. ---
  140.  
  141. setFilterMask( instance, string mask )
  142.  
  143. Sets the filter mask used by calls to displayOpen() and displaySave(). The filter
  144. mask determines what files to show when displaying an Open or Save dialog. The second
  145. parameter is a string representing the filter mask to set. On Windows, this is a
  146. comma seperated string of file types and associated extensions (e.g. "All
  147. Files,*.*,Text Files,*.TXT"), and a string of types on the Macintosh (e.g.
  148. "TEXTPICT"). On Windows, the filter mask string is limited to 256 characters. On the
  149. Macintosh, you are limited to four four-character types.  When a new instance of
  150. FileIO is created, the filter masks defaults to all files. To reset the filter mask to
  151. display all files after it has been set, just pass in an empty string (e.g.
  152. setFilterMask(me, "")).
  153.  
  154. ---
  155.  
  156. openFile( instance, string fileName, int openMode )
  157.  
  158. Opens the named file. This call must be used before any read/write operations can
  159. take place. The filename can be either a fully-qualified path and filename, or a
  160. relative filename. The Lingo '@' pathname operator is supported. The openMode
  161. parameter specifies whether to open the file in Read, Write or ReadWrite mode. Valid
  162. Flags are: 0 Read/Write, 1 Read, 2 Write.
  163.  
  164. ---
  165.  
  166. closeFile( instance )
  167.  
  168. Closes a file that has been previously opened using the openFile() method.
  169.  
  170. ---
  171.  
  172. displayOpen( instance )
  173.  
  174. Displays a platform specific Open dialog allowing a user to specify a file. Returns a
  175. fully-qualified path and fileName to Lingo. The setFilterMask() method can be used to
  176. control what file types are displayed in the dialog.
  177.  
  178. ---
  179.  
  180. displaySave( instance, string title, string defaultFileName )
  181.  
  182. Displays a platform specific Save dialog allowing a user to specify a file. Returns a
  183. fully-qualified path and fileName to Lingo. The setFilterMask() method can be used to
  184. control what file types are displayed in the dialog. The string and defaultFileName 
  185. parameters allow you to specifiy a default filename to be displayed, as well as title
  186. text for the save dialog. 
  187.  
  188. ---
  189.  
  190. createFile( instance, string fileName )
  191.  
  192. Creates a file. The fileName must be either a fileName to be created in the current
  193. directory, or a fully-qualified path and fileName. The Lingo '@' pathname operator
  194. and relative paths are not supported. After creating the new file, the file must be
  195. opened before it can be written to.
  196.  
  197. ---
  198.  
  199. setPosition( instance, position )
  200.  
  201. Sets the file position of the current open file. The file must be open to use this 
  202. method.
  203.  
  204. ---
  205.  
  206. getPosition( instance )
  207.  
  208. Gets the file position of the current open file. Returned as an integer. The file
  209. must be open to use this method. 
  210.  
  211. ---
  212.  
  213. getLength( instance )
  214.  
  215. Gets the length of the currently opened file. Returned as an integer. The file must
  216. be open use this method. The value returned is the length of the file in bytes. 
  217.  
  218. ---
  219.  
  220. writeChar( instance, string theChar )
  221.  
  222. Writes a single character to the file at the current position. The file must be open
  223. in write or read/write mode to use this method.
  224.  
  225. ---
  226.  
  227. writeString( instance, string theString )
  228.  
  229. Writes a string to the file at the current position. The file must be open in write
  230. or read/write mode to use this method.
  231.  
  232. ---
  233.  
  234. readChar( instance )
  235.  
  236. Reads the character (either single or double-byte) at the current position and then 
  237. increments the position. The character is returned to Lingo as a string. The file must 
  238. be open in read or read/write mode to use this method. 
  239.  
  240. ---
  241.  
  242. readLine( instance )
  243.  
  244. Reads from the current position up to and including the next CR, increments the
  245. position, and returns the string to Lingo.  The file must be open in read or
  246. read/write mode to use this method. 
  247.  
  248. ---
  249.  
  250. readFile( instance )
  251.  
  252. Reads from the current position to the end of the file and returns the file to Lingo
  253. as a string.  The file must be open in read or read/write mode to use this method.
  254.  
  255. ---
  256.  
  257. readWord( instance )
  258.  
  259. Reads the next word starting at the current position.  The file must be open in read
  260. or read/write mode to use this method. 
  261.  
  262. ---
  263.  
  264. readToken( instance, string skipChar, string breakChar )
  265.  
  266. Reads the next 'token' starting at the current position. Characters matching the
  267. skipChar parameter are "skipped" and the file is read until breakChar is encountered.
  268. The file must be open in read or read/write mode to use this method. This method will
  269. read double-byte tokens as long as the skip and break are single-byte characters. It
  270. will not detect double-byte skip or break characters.
  271.  
  272. ---
  273.  
  274. getFinderInfo( instance )
  275.  
  276. Returns the Type and Creator of the current file as a string. This method does
  277. nothing when used under Windows.  The file must be open to use this method.
  278.  
  279. ---
  280.  
  281. setFinderInfo( instance, string typeAndCreator )
  282.  
  283. Sets the Type and Creator of the current file. The string takes the form of a space
  284. seperated set of TYPE and CREATOR codes (e.g. "TEXT TTXT"). This method does nothing
  285. when used under Windows.  The file must be open to use this method.
  286.  
  287. ---
  288.  
  289. delete( instance )
  290.  
  291. Deletes the currently opened file.  The file must be open use this method.
  292.  
  293. ---
  294.  
  295. version( xtraRef )
  296.  
  297. Returns FileIO version and build information. Useful when filing 
  298. bug reports, determining installed version while authoring, etc. No practical use beyond this.
  299.  
  300. ---
  301.  
  302. getOSDir( )
  303.  
  304. Global method that returns the full path to either the Windows directory, or the System Folder 
  305. depending on which OS is currently being used. Does not require a child instance or
  306. Xtra reference to call.
  307.  
  308. ---
  309.  
  310.